home *** CD-ROM | disk | FTP | other *** search
/ Experimental BBS Explossion 3 / Experimental BBS Explossion III.iso / c / pcw.zip / MTYPDEMO.C < prev    next >
Text File  |  1990-01-30  |  370b  |  16 lines

  1. #include "pcwproto.h"
  2.  
  3. void main(void) {
  4.  
  5.    int ctype=1,arg1=1,arg2=0x7;
  6.    int tl, bl;
  7.  
  8. /* Take over hardware cursor */
  9.  
  10.    init_mouse(); get_cursor_size(&tl,&bl);
  11.    set_mtype(ctype,arg1,arg2); show_mouse();
  12.    keywait(60);
  13.    init_mouse();                        /* Reset Mouse */
  14.    set_cursor_size(tl,bl);              /* Set cursor size back */
  15. }
  16.